EntryHandler
interface EntryHandler<T> : EntrySerializer<T> , EntryDeserializer<T> , EntryValidator<T> , EntryCorrector<T>
wrapper interface for 4 basic handling interfaces
serialize value
deserialize inputs
validate updates
correct errors
Author
fzzyhmstrs
Since
0.2.0
Parameters
T
the non-null type of the Entry stored value
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
abstract fun deserializeEntry(toml: TomlElement, errorBuilder: MutableList<String>, fieldName: String, flags: Byte): ValidationResult<T>
Link copied to clipboard
Link copied to clipboard